home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / CUGUK / C048.ZIP / ALISP.ZIP / LISP.DOC < prev    next >
Text File  |  1985-08-06  |  2KB  |  35 lines

  1. LISP INTERPRETER
  2. written by Marc Adler
  3.        138 - 23 Hoover Ave.
  4.        Jamaica, NY  11435
  5.  
  6.   The LISP interpreter was something that I had written in Pascal in 1980,
  7. and was translated (quickly) into C this year. There are many features that
  8. have been left out, the most important being garbage collection, but the
  9. interpreter supports a decent subset of LISP. All of the basic LISP features
  10. are in it, including funargs, progs, and boolean operators. A test program
  11. is included in this package, so you can see that the interpreter actually
  12. works. To invoke it, just type "lisp < lisptest".
  13.  
  14.   There is a file called "lisplib" which contains some library functions.
  15. When the interpreter starts up, it loads the library in. The library just
  16. consists of LISP functions, so you may feel free to add to or subtract from
  17. it.
  18.  
  19.   The source code is included, so you can modify the code to work better, add
  20. new features, fix bugs, etc. I only request that if you perform any changes
  21. to the code, that you inform me of them so I can fix my code as well. If you
  22. need to ask any questions, or know why I did something in the code, you can
  23. write to me at the above address. I haven't looked at the code in a while,
  24. but I'll be glad to help in any way I can.
  25.  
  26.   There is no documentation included, as I am assuming that anyone who uses
  27. this is familiar with LISP. There are many good books for those who want to
  28. learn. To find out what functions and operators the interpreter supports,
  29. I direct you to the code.
  30.  
  31.   My thanks to the Railroad BBS of Long Island, my initiator into the rites
  32. of the world of BBS's.
  33.                      Marc Adler   8/85
  34.  
  35.